home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Musik / Misc / Amster / Source / include / search.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-27  |  822 b   |  38 lines

  1. /*
  2. ** Search Header
  3. */
  4.  
  5. #include <sys/types.h>
  6.  
  7. #include "include/mui.h"
  8.  
  9. #ifndef AMSTER_SEARCH_H
  10. #define AMSTER_SEARCH_H
  11.  
  12. extern int search_state;
  13.  
  14. struct searchdata {
  15.     u_long *str, *maxstr, *snick;
  16.     u_long *pop;
  17.     u_long *popspeed, *popspeedval, *popbit, *popbitval, *popfreq, *popfreqval;
  18.     u_long *result, *list;
  19.     u_long *clrbut, *BT_Resume, *dlbut, *fptog;
  20. };
  21.  
  22. MUIF search_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg);
  23.  
  24. #define SEARCH_GO       0x5001
  25. #define SEARCH_CLEAR    0x5002
  26. #define SEARCH_DOWNLOAD 0x5003
  27. #define SEARCH_NICK     0x5004
  28. #define SEARCH_FOUND    0x5005
  29. #define SEARCH_RESET    0x5006
  30. #define SEARCH_REFRESH  0x5007
  31. #define SEARCH_TOGGLE   0x5008
  32. #define SEARCH_SET      0x5009
  33. #define SEARCH_GET      0x5010
  34. #define SEARCH_USE      0x5011
  35.  
  36.  
  37. #endif    /* AMSTER_SEARCH_H */
  38.